home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / novtli / about.pas < prev    next >
Pascal/Delphi Source File  |  1995-12-22  |  510b  |  35 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TAboutBox = class(TForm)
  10.     Panel1: TPanel;
  11.     OKButton: TBitBtn;
  12.     Memo1: TMemo;
  13.     procedure OKButtonClick(Sender: TObject);
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   AboutBox: TAboutBox;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27.  
  28. procedure TAboutBox.OKButtonClick(Sender: TObject);
  29. begin
  30.   close;
  31. end;
  32.  
  33. end.
  34.  
  35.